Welcome![Sign In][Sign Up]
Location:
Search - transfer file In LAN

Search list

[Windows Develop文件传送

Description: 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大家可以在本机上测试,自己传文件给自己)。所以,我们在程序中需要使用两个Winsock控件,一个负责监听,一个负责发送,当发送端连接成功以后,便选择一个待发送的文件(可以是任意二进制文件),接着将文件名和文件字节长度发送给接收端,接收端收到这个消息以后,将文件名和文件长度解析出来,然后通知发送端可以开始发送文件;发送端读到这个消息之后,将文件流以字节的形式发送到接收端,接收端收到后,将二进制流回写,保存成文件即可。这里要注意两点,一个是由于Winsock每次最大传输8K的内容,所以需要将文件分解,每次传输固定数目的字节流,这样发送和接收时都可以根据这个数目来判断文件传输的进程,一旦字节流数目等于文件的大小,就需要关闭相应的文件句柄;另一点是由于我只使用一个Winsock控件接收,接收文本时需要注意要将UNICODE转码,解析成可识别的信息。 -LAN file transfer to uniform design and user convenience, we hope it will end service and client together and form a process so that users understand, a more intuitive 1:00 (in fact, do so in order to facilitate debugging, you can test the machine, its own text - items for himself). Therefore, we need procedures in the use of two Winsock Control, a charge of wiretapping, a charge of this, when the transmitter connects successfully, it will be a choice to send the document (can be arbitrary binary files), will then file names and the length byte sent to the receiver, receiver - After receiving the news, file names and length analysis, and then notify the sender can begin sending documents; Send-read the news, the flow of documents in the form of bytes sent to the receiving end, the receivin
Platform: | Size: 11227 | Author: sasa | Hits:

[WinSock-NDISTCPCom

Description: 看了袁渊先生在VC知识库《在线杂志》第14期发表的文章《基于TCP/IP的局域网多用户通信》,感觉受益颇多,但也觉得里面有一些不太完善的地方,具体来说主要有: 1、两个服务器单独运行,且主线程均阻塞,用户界面死锁,不便于控制; 2、聊天服务器线程和互斥量的使用可能导致死锁; 3、不能实现文件传送(文件传送可不能由服务器转发,否则非把它累趴下不可^-^); 4、不能由用户进行网络设置,所以在不同的网络使用必须修改源程序等等; 我在此基础上重新设计编写了一个系统 -read YUAN Yuan in VC knowledge base "online magazine" 14 published an article, "based on TCP / IP LAN multi-user communication", I feel a lot of benefit, but also think that there are some less than perfect, specifically are : 1, 2 server running, and the main threads are blocked, the user interface Deadlock, facilitate control; 2, chat server threads and contradict the use of volume may lead to deadlock; 3, achieve file transfer (FTP can be transmitted by the server, otherwise he will not get on the ground tired ^ - ^) ; 4, and not by users for network configuration, the different networks must be revised source, etc.; I would like to re-design on the basis of the preparation of a system
Platform: | Size: 223079 | Author: 阿健 | Hits:

[ICQ-IM-Chat324488335

Description: 在VC下开发的局域网聊天工具 实现了文件传输和文字聊天功能.. 开发工具...收机的开放原代码,本人在nokia...·用vc++语言设计有个网络浏览器的源代码.. 开发工具... -developed in VC LAN chatting tools of file transfer and text chat .. development tools .. . admission for the open-source, nokia ... I used vc language network design browser source code development tools ... ..
Platform: | Size: 335503 | Author: jin | Hits:

[WinSock-NDISfilegongxiang

Description: 文件系统共享,实现局域网的文件传输,用VC实现,在VC6.0下编译通过-shared file system, the LAN file transfer, with VC in the next compile VC6.0
Platform: | Size: 653046 | Author: ljt23 | Hits:

[Software Engineeringchat_file-transmition

Description: 利用Visual C++的Windows SOCKET网络编程实现局域网内正在使用本程序的所有主机的群聊、两主机之间的点对点聊天和文件传送功能,且具有以下特点:通信完全是异步的;各用户是对等的,不区分客户机和服务器,任何用户启动或关闭程序都不会影响其他用户的正常使用;使用多线程传输文件。 -using Visual C Windows Socket Programming Network is bringing LAN use this procedure in the mainframe group chat, between the two hosts and peer-to-peer file transfer chat function, which has the following features : Asynchronous communication is completely; users on the other, no distinction between client and server. Any user to toggle on or off the procedure will not affect other users of normal use; use multithreading to transfer files.
Platform: | Size: 60458 | Author: 彭双庆 | Hits:

[Windows Develop文件传送

Description: 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大家可以在本机上测试,自己传文件给自己)。所以,我们在程序中需要使用两个Winsock控件,一个负责监听,一个负责发送,当发送端连接成功以后,便选择一个待发送的文件(可以是任意二进制文件),接着将文件名和文件字节长度发送给接收端,接收端收到这个消息以后,将文件名和文件长度解析出来,然后通知发送端可以开始发送文件;发送端读到这个消息之后,将文件流以字节的形式发送到接收端,接收端收到后,将二进制流回写,保存成文件即可。这里要注意两点,一个是由于Winsock每次最大传输8K的内容,所以需要将文件分解,每次传输固定数目的字节流,这样发送和接收时都可以根据这个数目来判断文件传输的进程,一旦字节流数目等于文件的大小,就需要关闭相应的文件句柄;另一点是由于我只使用一个Winsock控件接收,接收文本时需要注意要将UNICODE转码,解析成可识别的信息。 -LAN file transfer to uniform design and user convenience, we hope it will end service and client together and form a process so that users understand, a more intuitive 1:00 (in fact, do so in order to facilitate debugging, you can test the machine, its own text- items for himself). Therefore, we need procedures in the use of two Winsock Control, a charge of wiretapping, a charge of this, when the transmitter connects successfully, it will be a choice to send the document (can be arbitrary binary files), will then file names and the length byte sent to the receiver, receiver- After receiving the news, file names and length analysis, and then notify the sender can begin sending documents; Send-read the news, the flow of documents in the form of bytes sent to the receiving end, the receivin
Platform: | Size: 11264 | Author: sasa | Hits:

[Internet-NetworkTCPCom

Description: 看了袁渊先生在VC知识库《在线杂志》第14期发表的文章《基于TCP/IP的局域网多用户通信》,感觉受益颇多,但也觉得里面有一些不太完善的地方,具体来说主要有: 1、两个服务器单独运行,且主线程均阻塞,用户界面死锁,不便于控制; 2、聊天服务器线程和互斥量的使用可能导致死锁; 3、不能实现文件传送(文件传送可不能由服务器转发,否则非把它累趴下不可^-^); 4、不能由用户进行网络设置,所以在不同的网络使用必须修改源程序等等; 我在此基础上重新设计编写了一个系统 -read YUAN Yuan in VC knowledge base "online magazine" 14 published an article, "based on TCP/IP LAN multi-user communication", I feel a lot of benefit, but also think that there are some less than perfect, specifically are : 1, 2 server running, and the main threads are blocked, the user interface Deadlock, facilitate control; 2, chat server threads and contradict the use of volume may lead to deadlock; 3, achieve file transfer (FTP can be transmitted by the server, otherwise he will not get on the ground tired ^- ^) ; 4, and not by users for network configuration, the different networks must be revised source, etc.; I would like to re-design on the basis of the preparation of a system
Platform: | Size: 223232 | Author: 阿健 | Hits:

[Internet-Networkfilegongxiang

Description: 文件系统共享,实现局域网的文件传输,用VC实现,在VC6.0下编译通过-shared file system, the LAN file transfer, with VC in the next compile VC6.0
Platform: | Size: 1595392 | Author: ljt23 | Hits:

[Software Engineeringchat_file-transmition

Description: 利用Visual C++的Windows SOCKET网络编程实现局域网内正在使用本程序的所有主机的群聊、两主机之间的点对点聊天和文件传送功能,且具有以下特点:通信完全是异步的;各用户是对等的,不区分客户机和服务器,任何用户启动或关闭程序都不会影响其他用户的正常使用;使用多线程传输文件。 -using Visual C Windows Socket Programming Network is bringing LAN use this procedure in the mainframe group chat, between the two hosts and peer-to-peer file transfer chat function, which has the following features : Asynchronous communication is completely; users on the other, no distinction between client and server. Any user to toggle on or off the procedure will not affect other users of normal use; use multithreading to transfer files.
Platform: | Size: 945152 | Author: 彭双庆 | Hits:

[CSharpmeeting

Description: 局域网视频会议完整版,含服务器端,客户端,支持文件传输,会议室群聊,文本聊天,语音,视频聊天-LAN video conference full version, including server, client, support file transfer, conference rooms, group chat, text chat, voice and video chat
Platform: | Size: 3099648 | Author: yanhao | Hits:

[Windows DevelopLAN-monitoring-system

Description: (1) 实时监视局域网主机屏幕 (2) 实时控制Monitor端屏幕 (3) 分发文件 (4)群发文件 (5)管理端共享、删除、移动员Monitor端的文件 (6)Monitor与Monitor之间互传文件 远程监测硬件配置的变化,数据包监控,远程注册表操作,获取远程主机的进程信息等-real-time monitoring LAN host screen (2) Monitor real-time control terminal screen (3) distribution of documents (4) bulk file (5) management-side sharing, delete, move, Monitor staff side of the paper (6) Monitor and the Monitor each transfer between document changes in the hardware configuration of remote monitoring, packet monitoring, remote registry operations, the process for the remote host information
Platform: | Size: 3656704 | Author: 吕政 | Hits:

[Process-Threadzq92345

Description: 多线程socket文件传输/支持断点续传/收发消息/点对多点 使用阻塞方式的socket,使用多线程,有较高的性能.在局域网中测试达到极限速度.支持断点续传.服务端可同时接收多个文件.传输文件的同时可以发送网络消息.-multi-threaded socket file transfer/support HTTP/transceiver news/obstruction use point-to-multipoint modes of socket, multi-threaded, high performance. In LAN test the speed limit. Support for HTTP. The server can also send multiple files. Transfer files with the when this network news.
Platform: | Size: 188416 | Author: fg | Hits:

[ICQ-IM-ChatFeiGeSrcCode

Description: 经典的飞鸽源代码,在局域网中实现普通的聊天,文件的互传。-Classic Dove source code, common in LAN chat, file transfer each other.
Platform: | Size: 142336 | Author: 刘龙 | Hits:

[P2PFiletransform

Description: 开发的一款P2P文件传输软件,该软件可以在局域网和互连上使用,具有文件传输,断点续传,多线程连接等功能。-Development of a peer-to-peer file transfer software, the software can be used in LAN and interconnect with file transfer, HTTP, multi-threaded connection.
Platform: | Size: 655360 | Author: 陈联合 | Hits:

[P2Pp2p

Description: 实现文件传输,点对点文件传输,该软件可以在局域网和互连上使用,具有文件传输,断点续传,多线程连接等功能。-File transfer, peer-to-peer file transfer, the software can be used in LAN and interconnect with file transfer, HTTP, multi-threaded connections and other functions.
Platform: | Size: 3526656 | Author: 胡晓飞 | Hits:

[CSharpQQDesigner

Description: 实现局域网聊天系统设计与开发,文件传输转载于CSDN-LAN chat system design and development, file transfer reproduced in CSDN
Platform: | Size: 8161280 | Author: 吕绍璧 | Hits:

[CommunicationLAN-file-transfer-system

Description: 可实现同一局域网内任意两台主机之间的文件传输,包含发送端和客户接收端。-Between any two hosts in the same LAN file transfer, contains the sender and the customer receiving end.
Platform: | Size: 154624 | Author: Allan | Hits:

[File Operatekceration-LAN

Description: 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起(LAN file transfer In order to design a unified and user operation is convenient, we want to the client and server together)
Platform: | Size: 11264 | Author: xssembof | Hits:

[Internet-NetworkTCP_Server

Description: 使用TCP通讯协议,可以实现局域网下进行文件传送,适合工业局域网文件管理的小工具(Using TCP communication protocol, it can implement file transfer in LAN and a small tool suitable for file management in industrial LAN.)
Platform: | Size: 8259584 | Author: ajdw10 | Hits:

[TCP/IP stackTCP_Client

Description: 使用TCP通讯协议,这个是客户端的代码,可以实现局域网下进行文件传送,适合工业局域网文件管理的小工具(Using TCP communication protocol, this is the source code of the client,it can implement file transfer in LAN and a small tool suitable for file management in industrial LAN.)
Platform: | Size: 1249280 | Author: ajdw10 | Hits:
« 1 23 4 5 »

CodeBus www.codebus.net